home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / com32 / lib / strncat.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-11-10  |  150 b   |  12 lines

  1. /*
  2.  * strncat.c
  3.  */
  4.  
  5. #include <string.h>
  6.  
  7. char *strncat(char *dst, const char *src, size_t n)
  8. {
  9.   strncpy(strchr(dst, '\0'), src, n);
  10.   return dst;
  11. }
  12.